home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 January / PCWorld_2007-01_cd.bin / v cisle / autoit / autoit-v3.2.0.1-setup.exe / Examples / Helpfile / If.au3 < prev    next >
Encoding:
Text File  |  2006-06-17  |  135 b   |  8 lines

  1. ;Terminates script if no command-line arguments
  2. If $CmdLine[0] = 0 Then Exit
  3.  
  4. ;Alternative:
  5. If $CmdLine[0] = 0 Then
  6.     Exit
  7. EndIf
  8.